home *** CD-ROM | disk | FTP | other *** search
/ 360 Degrees of: Lechuguilla Cave / 360 Degrees of: Lechuguilla Cave.iso / pc / data / vr.cst / 00004_loop.ls < prev    next >
Encoding:
Text File  |  2006-08-06  |  285 b   |  18 lines

  1. on enterFrame
  2.  
  3.   sprite(2).member.camera(1).rotate(0,.1,0)
  4.   
  5. end
  6.  
  7. on exitFrame me
  8.   
  9.   global demotimer
  10.   --show the store display if it has been idle too long
  11.   --10800 ticks equals 3 minutes
  12.   if the ticks > demotimer+17800 then
  13.     go to "quit"
  14.   end if
  15.   
  16.   
  17.   go to the frame
  18. end